home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #1 / Amiga Plus 1995 #1.iso / fish-disketten / fish_651-660 / d651 / icons / unpackdisk2 < prev    next >
Text File  |  1994-12-13  |  1KB  |  48 lines

  1. .K ""
  2. echo "This script will unpack icons1.lha to create a bootable demo disk."
  3. echo "It will make the disk bootable, and add some files from your currently"
  4. echo "running system, which must be 2.0.  Once booted with the demo disk, you"
  5. echo "will have an 8 color workbench, set up with the suggested colors for"
  6. echo "viewing the 8 color icons."
  7. echo ""
  8.  
  9. ask "Do you have a blank disk ready?"
  10. if not WARN
  11.     echo "Try again when you do ..."
  12.     echo "All Done.  Click close gadget to get rid of window."
  13.     endcli
  14. endif
  15.  
  16. ask "Is floppy drive df1: free?"
  17. if not WARN
  18.     echo "You will need to do the unpacking yourself."
  19.     echo "All Done.  Click close gadget to get rid of window."
  20.     endcli
  21. endif
  22.  
  23. echo "Formatting and unpacking disk."
  24.  
  25. sys:system/format drive df1: name Icons noicons
  26.  
  27. echo "Making disk bootable..."
  28. c:install drive df1:
  29.  
  30. echo "Copying needed files from your c: directory..."
  31. c:makedir df1:c
  32. c:copy c:assign c:copy c:IPrefs c:loadwb c:makedir c:setpatch c:version df1:c
  33.  
  34. echo "Copying needed libraries from your libs: directory..."
  35. c:makedir df1:libs
  36. c:copy libs:diskfont.library libs:iffparse.library libs:version.library df1:libs
  37.  
  38. echo "Extracting preferences and startup files..."
  39. :c/lha -mraxe x Prefs.lha Icons:
  40.  
  41. echo "Extracting icons..."
  42. :c/lha -mraxe x Icons1.lha Icons:
  43.  
  44. echo ""
  45. echo "All Done.  Click close gadget to get rid of window."
  46. echo "Reboot with the demo disk to view the icons."
  47. endcli
  48.